home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / disk-tools / floppy / install·floppy < prev    next >
Encoding:
Text File  |  1996-07-16  |  706 b   |  38 lines

  1. ;Install script for Floppy.device
  2.  
  3. (user 2)
  4. (set @default-dest "")
  5. (set fdev "floppy.device")
  6.  
  7. (set filesystem
  8.    (= 0
  9.      (askchoice
  10.            (prompt "\nSelect the filesystem:")
  11.            (help
  12.                "Select a filesystem for floppy drives.\n"
  13.                "If you select Ami-FileSafe make sure "
  14.                "the file 'L:FloppyAFS' exist.\n\n\n"
  15.                @askchoice-help
  16.                )
  17.            (choices "FastFileSystem" "Ami-FileSafe")
  18.            (default 0)
  19.            )
  20.       )
  21. )
  22.  
  23. (set mountdir "AFS")
  24. (if filesystem (set mountdir "FFS"))
  25.  
  26. (copyfiles
  27.     (source fdev)
  28.     (dest "Devs:")
  29.     (safe)
  30. )
  31.  
  32. (copyfiles
  33.     (source mountdir)
  34.     (dest "Sys:Storage/DosDrivers/")
  35.     (all)
  36.     (safe)
  37. )
  38.